A pointer to the first occurence of search in str or NULL if search
is not found in str.
NOTES
EXAMPLE
char buffer[64];
strcpy (buffer, "Hello ");
// This returns a pointer to the first l in buffer.
strstr (buffer, "llo ");
// This returns NULL
strstr (buffer, "llox");